home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / networking / 3336 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  2.4 KB

  1. Path: news.zeitgeist.net!usenet
  2. From: mwm@contessa.phone.net (Mike Meyer)
  3. Newsgroups: comp.sys.amiga.networking
  4. Subject: Re: JAVA + See some of my ideas
  5. Date: Mon, 1 Apr 1996 09:55:31 PST
  6. Organization: Missionaria Phonibalonica
  7. Distribution: world
  8. Message-ID: <19960401.7939E48.91AD@contessa.phone.net>
  9. References: <884.6645T797T2962@atnet.at> <66095534@jojo.IN-Berlin.DE> <3150956C.549B@sysplan.com> <3064.6659T1306T1965@atnet.at> <19960327.79CA578.FCBD@localhost.UUCP>
  10. NNTP-Posting-Host: contessa.phone.net
  11. X-NewsReader: Amiga Yarn 3.9, 1995/05/09 10:42:03
  12.  
  13. In <19960327.79CA578.FCBD@localhost.UUCP>, jshaffer@mail.csrlink.net (Jim Shaffer, Jr.) wrote:
  14. > In article <3064.6659T1306T1965@atnet.at> rabauke@atnet.at (Peter Routsis) writes:
  15. > > answer seemed rather "short-sighted" to me. Because noone can ignore JAVA
  16. > > anymore,
  17. > I'm ignoring it quite easily now that I got AWeb :-)
  18. > With AMosaic, I always had to look at the script cluttering the page.
  19.  
  20. Are you sure you're not confusing Java (Sun's byte-code-interpreted
  21. system for distributing executables portably) with JavaScript
  22. (NetScapes built-into-the-browser extension language)? Even though
  23. NetScape chose to change the name (from LiveScript) to capitalize on
  24. the hype for Java, and they both look like C, they really aren't
  25. closely related.
  26.  
  27. As for ignoring JavaScript scripts - Amosaics broken comment handling
  28. (as written by the authors of NetScape) causes the bogus "comment it
  29. out" technic recommended by NetScape to fail in almost everycase.
  30.  
  31. NetScapes broken comment handling causes that same bogus technic to
  32. work in cases where it shouldn't; it only fails if you use slightly
  33. strange whitespace conventions (*).
  34.  
  35. AWebs correctly parses comments; there are some common real-life
  36. idioms that will terminate the comment early. You've just been lucky
  37. enough not to run into any of them, or are running AWeb in the mode
  38. that causes it to misparse HTML files.
  39.  
  40.     <mike
  41.  
  42. *) NetScape (through 2.0; haven't tried 3.0 yet) terminates comments
  43. on "-->"; it ignores valid comment delimiters that have whitespace in
  44. front of the ">". This means that the standard formatting for the
  45. expression "i-- > 0" will cause aweb in "correct" mode to terminate a
  46. comment, but not netScape. To get NetScape to terminate it, you have
  47. to use the slightly strange "i-->0". All of them handle the invalid
  48. HTML generated by using the "--" operator inside a comment just fine.
  49.